fix: sync homebrew formula version and enable subtask GitHub Issues#848
fix: sync homebrew formula version and enable subtask GitHub Issues#848marcusquinn merged 1 commit intomainfrom
Conversation
Root causes: 1. version-manager.sh commit_version_changes() did not include homebrew/aidevops.rb in git add, causing the formula to drift one version behind on every release (v2.107.0 vs v2.108.0). This broke Version Consistency Check CI on all open PRs. 2. issue-sync-helper.sh cmd_push() explicitly skipped indented subtask lines (e.g., t199.1-t199.11), so subtasks never got GitHub Issues created. All cmd_* functions (push, pull, close, enrich, status, reconcile) and add_gh_ref_to_todo/fix_gh_ref used ^- patterns that only matched top-level tasks. Fixes: - Add homebrew/aidevops.rb to git add in commit_version_changes() - Update homebrew formula from v2.107.0 to v2.108.0 - Change all grep/sed patterns from ^- to ^\s*- across issue-sync functions to match both top-level and indented subtask lines
|
Warning You have reached your daily quota limit. Please wait up to 24 hours and I will start processing your requests again! |
|
Warning Rate limit exceeded
⌛ How to resolve this issue?After the wait time has elapsed, a review can be triggered using the We recommend that you space out your commits to avoid hitting the rate limit. 🚦 How do rate limits work?CodeRabbit enforces hourly rate limits for each developer per organization. Our paid plans have higher rate limits than the trial, open-source and free plans. In all cases, we re-allow further reviews after a brief timeout. Please see our FAQ for further information. ✨ Finishing touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
🔍 Code Quality Report�[0;35m[MONITOR]�[0m Code Review Monitoring Report �[0;34m[INFO]�[0m Latest Quality Status: �[0;34m[INFO]�[0m Recent monitoring activity: 📈 Current Quality Metrics
Generated on: Tue Feb 10 01:31:42 UTC 2026 Generated by AI DevOps Framework Code Review Monitoring |
|



Summary
homebrew/aidevops.rbto version-manager.sh commit stepRoot Causes
1. Homebrew Version Drift (blocking all PRs)
version-manager.shcommit_version_changes()staged all version files excepthomebrew/aidevops.rb. Theupdate_version_in_files()function correctly updated the formula, but the commit step never staged it. Every release left the formula one version behind onorigin/main, causing the Version Consistency Check to fail on every PR.2. Subtasks Not Getting GitHub Issues
issue-sync-helper.shcmd_push()explicitly skipped indented subtask lines (^- \[only matches unindented). All 11 subtasks of t199 (t199.1-t199.11) had no GitHub Issues. The same^-pattern was used acrosscmd_push,cmd_pull,cmd_close,cmd_enrich,cmd_status,cmd_reconcile,add_gh_ref_to_todo, andfix_gh_ref_in_todo.Changes
version-manager.shhomebrew/aidevops.rbtogit addincommit_version_changes()homebrew/aidevops.rbissue-sync-helper.sh^-grep/sed patterns to^\s*-across 8 functionsVerification
bash -n